h1 { font-family: Verdana, Geneva, Tahoma, sans-serif; color: rgb(255, 255, 255); font-size: 50px; }
h2 { font-family: Arial, Helvetica, sans-serif; font-size: large; color: rgb(160, 4, 4); font-size: 49px; align-self: center }
body {
    background-color:#ffffff;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
    background-size: cover;
    background-position: center;
  
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0;
    background-color: #a90404;
    width: 100%;
    box-sizing: border-box;
}

.container img{
    border-radius: 20px;
}

.special {
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    min-height: 32px;
    text-align: center;
    padding: 10px 0;
    background-color: #b70505;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    min-width: 100%;
}






a {
    text-decoration: none;
    color: white;
    display: inline-block;
    font-size: 20px;
    font-weight: bolder;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 0px;
}
a:hover {
    color: goldenrod;
}
.Guidetitle {
    color: brown;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
    text-align: center;
    font-weight: 900;
    margin: 20px 0;
}
.updates {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-weight: bolder;
    font-size: 20px;
    background-color: rgb(232, 176, 32);
    color: rgb(191, 17, 17);
    margin: 20px auto;
    border-radius: 5px;
    width: 90%;
    max-width: 800px;
}

.card1 {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    height: 50px;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 500px;
    background-color: brown;
    overflow: hidden;
    width: 90%;  
    max-width: 400px; 
   margin: 10px auto;}


.card1 h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: rgb(255, 255, 255);
    background-color: brown;
    padding: 10px ;
    margin: 10px;
    
}
.card-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}
.card1 :hover{
    color: goldenrod;
    
}

.card-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}
img {
    max-width: 100%;
}

@media (max-width: 600px) {
    h1 {
        font-size: 30px;
    }
    .Guidetitle {
        font-size: 28px;
    }
    .card h3 {
        font-size: 16px;
    }
    .updates {
        font-size: 18px;
    }
    a {
        font-size: 18px;
        padding: 10px 20px;
    }
}

.bout{
    border-right: 3px solid goldenrod;
}

.eventguides {
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
    text-align: center;
    font-weight: 900;
    margin: 20px 0;
}

.dropdown {
    float: left;
    position: relative;
    border-radius: 15px;
  }

  .dropdown-content {
    display: none;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    position: absolute;
    left: 0; 
    top: 100%;
    border-radius: 15px;
  }
  
  .dropdown-content a {
    float: none;
    color: rgb(167, 4, 4);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    position: static;
  }
  
  .dropdown-content a:hover {
    background-color: #ffffff;
    border-radius: 15px;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

 .quiz-wrapper {
            display: flex;
            gap: 20px;
            justify-content: space-between;
            padding: 20px;
            flex-direction: row;
            flex-wrap: wrap; /* allows wrapping on narrow screens */
        }
        .quiz-set-2,
        .quiz-set-1 {
            flex: 1 1 45%; /* flex-grow, flex-shrink, flex-basis */
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

@media (max-width: 768px) {
  .quiz-wrapper {
    flex-direction: column;
    align-items: center; /* Optional: center them when stacked */
  }
}

.set-title {
    color:rgb(171, 17, 17);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    text-align: center;
    font-weight: 900;
    margin: 10px 0;
   
}